finish Github Action 自动部署
finish Github Action 自动部署
睡着の黑色素自动部署指令常用
添加所有文件到暂存区
plaintext
1 | git add . |
提交代码
plaintext
1 | git commit -m "github action update" |
推送到main分支
plaintext
1 | git push origin main |
依次执行三条指令,节约上传时间,代码在github由CI自动编译,避免编写3分钟编译3小时。。。
1 | git add . |
1 | git commit -m "github action update" |
1 | git push origin main |
依次执行三条指令,节约上传时间,代码在github由CI自动编译,避免编写3分钟编译3小时。。。